function addMarkers(){ mySelect = document.getElementById('selection'); New_York = [];New_York[New_York.length] = createMarker(new GLatLng(40.71455000,-74.00712400),"
Acteen
35 W. 45th Street, 6th Floor
New York, NY 10036

[ View School Profile ]
",iconGr); mySelect.options[mySelect.options.length] = new Option("Acteen",'New_York=' + New_York.length); New_York[New_York.length] = createMarker(new GLatLng(40.75600000,-73.98053600),"
Acteen
244 Fifth Avenue, Ste R-222
New York, NY 10001

[ View School Profile ]
",iconGr); mySelect.options[mySelect.options.length] = new Option("Acteen",'New_York=' + New_York.length); New_York[New_York.length] = createMarker(new GLatLng(40.71455000,-74.00712400),"
Acteen-acting For Teens
35 W. 45th Street, 6th Floor
New York, NY 10036

[ View School Profile ]
",iconGr); mySelect.options[mySelect.options.length] = new Option("Acteen-acting For Teens",'New_York=' + New_York.length); New_York[New_York.length] = createMarker(new GLatLng(40.79545700,-74.17541900),"
Barnard College/columbia University
3009 Broadway 112 Hewitt
New York, NY 10027

[ View School Profile ]
",iconGr); mySelect.options[mySelect.options.length] = new Option("Barnard College/columbia University",'New_York=' + New_York.length); New_York[New_York.length] = createMarker(new GLatLng(40.78219940,-73.97607070),"
Belvoir Terrace
101 West 79th Street, 15 B
New York, NY 10024

[ View School Profile ]
",iconGr); mySelect.options[mySelect.options.length] = new Option("Belvoir Terrace",'New_York=' + New_York.length); New_York[New_York.length] = createMarker(new GLatLng(40.78306030,-73.97124880),"
Gordon Kent's New England Tennis Camp
P.o. Box 212
New York, NY 10044

[ View School Profile ]
",iconGr); mySelect.options[mySelect.options.length] = new Option("Gordon Kent's New England Tennis Camp",'New_York=' + New_York.length); New_York[New_York.length] = createMarker(new GLatLng(40.73649130,-73.98887370),"
New York Film Academy
100 East 17th Street
New York, NY 10003

[ View School Profile ]
",iconGr); mySelect.options[mySelect.options.length] = new Option("New York Film Academy",'New_York=' + New_York.length); New_York[New_York.length] = createMarker(new GLatLng(40.72830240,-74.20721220),"
New York University
721 Broadway, 12th Floor
New York, NY 10003

[ View School Profile ]
",iconGr); mySelect.options[mySelect.options.length] = new Option("New York University",'New_York=' + New_York.length); New_York[New_York.length] = createMarker(new GLatLng(40.73513010,-73.99424580),"
Parsons New School For Design
66 Fifth Avenue
New York, NY 10011

[ View School Profile ]
",iconGr); mySelect.options[mySelect.options.length] = new Option("Parsons New School For Design",'New_York=' + New_York.length); New_York[New_York.length] = createMarker(new GLatLng(40.69238500,-73.98987200),"
Pratt Institute
200 Willoughby Avenue, Brooklyn, New York 11205-9975
New York, NY 11205

[ View School Profile ]
",iconGr); mySelect.options[mySelect.options.length] = new Option("Pratt Institute",'New_York=' + New_York.length); New_York[New_York.length] = createMarker(new GLatLng(40.71455000,-74.00712400),"
School For Film And Television
39 West 19th Street, 12th Floor
New York, NY 10011

[ View School Profile ]
",iconGr); mySelect.options[mySelect.options.length] = new Option("School For Film And Television",'New_York=' + New_York.length); map.removeOverlays(New_York); setTimeout(function(){map.addOverlays(New_York)},1000); maxLng = -73.97124880; maxLat = 40.79545700; minLng = -74.20721220; minLat = 40.69238500; reCenterMap(); } // End addStateMarkers JavaScript Function function openAll() { if (map) { selectChange("all"); } else { setTimeout("openAll()",200); } } // Takes an array of markers and centers/zooms map based on marker range function centerByArray(myArray, recenter, newMaxMin){ if (newMaxMin == true) reMaxMin(myArray); for (var i = 0; i < myArray.length; i++){ var markLng = myArray[i].point.x; var markLat = myArray[i].point.y; if (markLat > maxLat) maxLat = markLat; if (markLng > maxLng) maxLng = markLng; if (markLat < minLat) minLat = markLat; if (markLng < minLng) minLng = markLng; } if (recenter) reCenterMap(); } // Reinit max/mins function reMaxMin(myArray){ //alert(myArray[0].point.x); maxLng = myArray[0].point.x; maxLat = myArray[0].point.y; minLng = myArray[0].point.x; minLat = myArray[0].point.y; } // Recenter map based on global max/mins function reCenterMap(){ //alert('#' + minLat + '#' + minLng + '#' + maxLat + '#' + maxLng); var bounds = new GLatLngBounds(); bounds.extend(new GLatLng(minLat, minLng)); bounds.extend(new GLatLng(maxLat, maxLng)); var center_lat = (bounds.getNorthEast().lat() + bounds.getSouthWest().lat()) / 2.0; var center_lng = (bounds.getNorthEast().lng() + bounds.getSouthWest().lng()) / 2.0; var center = new GLatLng(center_lat, center_lng); var zoom = map.getBoundsZoomLevel(bounds); if(minLat == maxLat) zoom = 9; map.setCenter(center,zoom); //map.setCenter(center,10); /* var center = new GPoint( (maxLng + minLng)/2, (maxLat+minLat)/2 ); var delta = new GSize(maxLng - minLng, maxLat - minLat); var minZoom = map.spec.getLowestZoomLevel(center, delta, map.viewSize); if (minZoom < 4) minZoom = 4; // Lowest possible zoom is 4 map.centerAndZoom(center, minZoom); */ } // Fires when drop down list of schools changes function selectChange(selection) { var myVal = selection.options[selection.selectedIndex].value; map.closeInfoWindow(); // Add entire array based on variable type if (myVal.indexOf('all') != -1 && myVal != 'all'){ var temp = myVal.split('='); var showArray = temp[1]; // If Array is > X amount of markers, then open in a new page if (eval(showArray).length > 20) // New window depends on whether or not we're on the search page if (location.href.indexOf('nearby_schools.php') == -1) window.open(location.href + '/map/' + showArray); else window.open('/search////all'); map.removeOverlays(New_York); map.addOverlays(eval(showArray)); centerByArray(eval(showArray), true, true); // Center and zoom on set of markers } // Add individual markers if (myVal.indexOf('all') == -1 && myVal != 'all' && myVal.length) { var temp = myVal.split('='); var myArray = temp[0]; var myIndex = parseInt(temp[1]) - 1; document.getElementById('map').width = "750"; map.removeOverlay(eval(myArray)[myIndex]); map.addOverlay(eval(myArray)[myIndex]); GEvent.trigger(eval(myArray)[myIndex],'click'); } // Show all markers if (myVal == 'all') { cntMarker = 0; reMaxMin(New_York);map.removeOverlays(New_York); map.addOverlays(New_York); centerByArray(New_York, false, false); cntMarker += New_York.length; centerByArray(New_York,true, false); //if (cntMarker > 20) // New window depends on whether or not we're on the search page if (location.href.indexOf('nearby_schools.php') == -1) window.open(location.href + '/map/all'); //else //window.open('/search////all'); } } function createMarker(point, label, icon){ var marker = new GMarker(point, icon); var html = label; GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml(html); }); return marker; }